home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / mnode.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  5KB  |  131 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: mnode.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 02/12/1997 
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The Multi-way node (E)ntryKey class and (M)ulti-way (n)ode
  32. classes are used to make up (B)alanced multi-way (T)rees.
  33. Each node in the tree will have a left branch that leads to
  34. all nodes with keys smaller than the smallest key. The right
  35. branches will be paried with a key, each branch leading to all
  36. nodes with keys greater than the given key, but less than the
  37. key to the right.
  38. */
  39. // ----------------------------------------------------------- // 
  40. #include <string.h>
  41. #include "mnode.h"
  42.  
  43. INT32 &Mnode::Branch(int posn)
  44. // Returns the branch for the given position. The left
  45. // branch is returned if posn = -1
  46. {
  47.   // NOTE: In order for this version of the Branch() function to
  48.   // work there cannot be any gaps between the left and entry
  49.   // fields in the Mnode class. To bypass this rule explicitly
  50.   // test for -1 and return the left branch.
  51.  
  52.   return entry[posn].right;
  53. }
  54.  
  55. INT32 &Mnode::GetBranchs(int posn)
  56. // Return the left branch if posn = -1
  57. {
  58.   if(posn == -1) return left;
  59.   return entry[posn].right;
  60. }
  61.  
  62. int Mnode::Search(const EntryKey &e, int &posn)
  63. // Tries to match e's key with the keys in the entries
  64. // of this node. Returns -1 if e's key is less than all
  65. // keys in the node, returns 0 if there was a match, 
  66. // return 1 if e's key is greater than all keys in the 
  67. // node. Passes back posn of matching entry if any, or 
  68. // the posn of the entry containing the appropriate branch
  69. // to keep searching down.
  70. {
  71.   posn = cnt-1;
  72.  
  73.   while(posn >= 0) {
  74.     int rv = Compare(e, entry[posn]);
  75.     if (rv > 0) return 1;
  76.     if (rv == 0) return 0;
  77.     posn--;
  78.   }
  79.   return -1;
  80. }
  81.  
  82. int Mnode::FullSearch(const EntryKey &e, int &posn)
  83. // Like the first Search(), except it uses FullCompare().
  84. {
  85.   posn = cnt-1;
  86.  
  87.   while(posn >= 0) {
  88.     int rv = FullCompare(e, entry[posn]);
  89.     if (rv > 0) return 1;
  90.     if (rv == 0) return 0;
  91.     posn--;
  92.   }
  93.   return -1;
  94. }
  95.  
  96. void Mnode::Split(Mnode &b, int split_posn)
  97. // Moves right half of this node at split_posn into empty b.
  98. // Assumes split_posn is in range.
  99. {
  100.   b.cnt = cnt - split_posn; // Compute how much to move
  101.   memmove(b.entry, entry+split_posn, (b.cnt)*sizeof(EntryKey));
  102.   cnt = split_posn;
  103. }
  104.  
  105. void Mnode::InsEntryKey(EntryKey &e, int posn)
  106. // Inserts entry e into node at position posn. Assumes
  107. // there is room and assumes posn <= cnt;
  108. {
  109.   memmove(entry+posn+1, entry+posn, (cnt-posn)*sizeof(EntryKey));
  110.   entry[posn] = e;
  111.   cnt++;
  112. }
  113.  
  114. void Mnode::Cat(Mnode &n)
  115. // Adds all entries of node n to the end of this node.
  116. // Assumes there is enough room.
  117. {
  118.   for(int i = 0; i<n.cnt; i++) entry[cnt++] = n.entry[i];
  119. }
  120.  
  121. void Mnode::DelEntryKey(int posn)
  122. // Deletes the entry at position posn. Assumes posn is in range.
  123. {
  124.   cnt--;
  125.   memmove(entry+posn, entry+posn+1, (cnt-posn)*sizeof(EntryKey));
  126. }
  127. // ----------------------------------------------------------- //
  128. // ------------------------------- //
  129. // --------- End of File --------- //
  130. // ------------------------------- //
  131.